home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ MSO MRU Clear 1.xpl < prev    next >
Text File  |  2001-12-10  |  1KB  |  53 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="5"
  3. "COUNT"="3"
  4. "UIPATH"="Program Options\Microsoft Office\MS Office 97"
  5. "NAME"="Clear Items"
  6. "VERSION"="1.00"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Clear Excel 97 MRU List"
  9. "TEXT 2"="Clear PowerPoint 97 MRU List"
  10. "TEXT 3"="Clear Access 97 MRU List"
  11. "DESCRIPTION 1"="If you do not want that other people can see the items you have opened, click the button."
  12. "AUTHOR"="Xteq Systems (Neil R. Turner)"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"=" "
  16.  
  17. sP="HKCU\Software\Microsoft\Office\8.0\"
  18. s1="Excel\Recent File List\File"
  19. s2="PowerPoint\Recent File List\File"
  20. s3="Access\Settings\MRU"
  21.  
  22. Sub Plugin_Initialize 
  23.  If RegPathExists(sP)=false then
  24.   Call Disable()
  25.  end if 
  26. End Sub
  27.  
  28. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  29.  if ElementIndex=1 then
  30.   Call DoWork(1,s1)
  31.  end if
  32.  if ElementIndex=2 then
  33.   Call DoWork(2,s2)
  34.  end if
  35.  if ElementIndex=3 then
  36.   Call DoWork(3,s3)
  37.  end if
  38. End Sub
  39.  
  40. Sub DoWork(NUM,Val)    
  41.  for l=1 to 30
  42.   DebugMsg(sP & VAL & l)
  43.   v=RegReadValue(sP & VAL & l)
  44.   If IsEmpty(v)=false then
  45.    Call RegDeleteValue(sP & VAL & l)
  46.   end if
  47.  Next
  48.  Call MsgInformation("Cleared!")
  49. End Sub
  50.  
  51. Sub Plugin_Terminate 
  52. End Sub
  53.